home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / message / msgwiz95 / readme.txt < prev   
Encoding:
Text File  |  1995-07-23  |  13.9 KB  |  376 lines

  1. ==============================================
  2. MsgBox95 3.20 - The VB Message Box Replacement
  3. ==============================================
  4. The Visual Basic MsgBox does not have alternate command 
  5. captions, alternate icons, alternate fonts, or a Help button.  
  6. MsgBox95 provides all those objects and more.
  7.  
  8. Features:
  9. 1.  Exactly duplicates the VB MsgBox functions.
  10. 2.  Uses the 3D effect found in newer applications.
  11. 3.  Allows for additional, more meaningful user response by 
  12. allowing the command captions to be more descriptive.
  13. 4.  Can be used to provide bilingual messages, with 
  14. corresponding captions.
  15. 5.  Can display alternate icons.
  16. 6.  Can display a 3D title [or no title] using Ctl3D.DLL
  17. 7.  Can be used to create "Splash Screens".
  18. 8.  A MsgBox Wizard [MsgWiz95.Exe] generates MsgBox Visual 
  19. Basic code.  Thus simplifying the creation of messages.
  20. 9.  Can include a Help button or No buttons.
  21. 10. A MsgBox Conversion Utility [MsgConvt.Exe].
  22. 11. Work with Windows 3.1 and Windows 95.
  23.  
  24. ======================================
  25. MsgBox Wizard - Generate Code and Demo
  26. ======================================
  27.  
  28. MsgWiz95.Zip contains the following zipped files:
  29.  
  30. MsgWiz95.Exe    Demo Program
  31. MsgBox95.Hlp    Help File
  32. MsgConvt.Hlp    Conversion Help File
  33. MsgBSubs.Hlp    Subroutines and Functions Help File
  34. ReadMe.Txt    This Read Me File
  35. *.Ico    Several icons used by MsgWiz95
  36. File_id.Diz    A brief description of the product.
  37.  
  38. MsgWiz95 uses VBRun300.DLL, ThreeD.VBX, CMDialog.VBX, and 
  39. Ctl3D.Dll.  They are not supplied.  
  40.  
  41. The supplied MsgConvt.Hlp and MsgBSubs.Hlp are provided as 
  42. "shell" files to keep the size of the downloaded file to a 
  43. minimum.  We will be happy to send you the full version of 
  44. these files.
  45.  
  46. You should copy the Help files to your Windows directory.  
  47. Use MsgWiz95 to compare the difference between the VB MsgBox 
  48. and the MsgBox95 messages.  You can also demo the use of 
  49. different icons, fonts, command captions and include a help 
  50. button or no buttons.
  51.  
  52. Please review the jelp file to learn how to incorporate 
  53. MsgBox95 into your applications.
  54.  
  55. MsgBox95 will use Ctl3Dv2.DLL or Ctl3D.DLL, if found.  They 
  56. cause MsgBox95 forms to be displayed with a 3D title and 
  57. MsgWiz95's CMDialog forms to be displayed with a 3D effect.
  58.  
  59. ===============
  60. Version History
  61. ===============
  62.  
  63. Version 3.20, 95/07/24
  64. ----------------------
  65. MsgBox3D Becomes MsgBox95
  66. Support for Windows 95 - MsgBox95 now automatically supports 
  67. Windows 95.  If you are a previous user of you need only 
  68. replace MsgBox3D with MsgBox95, recompile your application 
  69. and your messages will fully support Windows 95.  If you are 
  70. new to MsgBox95 then you can include it in your application 
  71. and know that your messages will appear correctly in a 
  72. Windows 95 environment.  You will want to review the "Windows 
  73. 95 Conversion Considerations" in the help file.
  74.  
  75. Other Enhancements.
  76. Mouse Snap-To - Mouse "snap to" is now automatically handled.  
  77. API SetCursorPos is used to position the mouse.  That support 
  78. was completely rewritten in this version.
  79.  
  80. Included Module Size Smaller - The "history" information 
  81. previously maintained in MsgBox3D.Bas has been moved to 
  82. module MsgHst95.Bas.  You no longer have to "carry" this 
  83. textual information into your application.  Likewise, "What's 
  84. New" information has been moved to module MsgNew95.Bas.
  85.  
  86. Version 3.10, 95/06/08
  87. ----------------------
  88. Ctrl-P Prints - MsgBox3D prints the message on the Windows 
  89. default print in response to the user's pressing Ctrl-P.  A 
  90. useful feature for responding to users who have encountered 
  91. an application's error message
  92.  
  93. Minor Enhancements
  94. 1. A mouse click on the lower portion of a NoButton/NoTitle 
  95. message simulates the selection of the message's default 
  96. button.
  97. 2. MB3D_DoHelp now supports the WinHelp Help_Quit command.
  98. 3. MsgBox3D is now available from PsL [Public (software) 
  99. Library] and a demo version is available on America Online.
  100.  
  101. Version 3.00, 95/05/16
  102. ----------------------
  103. MsgConvt Conversion Utility - The conversion utility reads 
  104. your projects and converts MsgBox statements to MsgBox3D 
  105. statements.  See help file MsgConvt.Hlp for details.
  106.  
  107. New Look
  108. No Separator - The message can be created without a separator 
  109. line between the message and command buttons.  A suggestion 
  110. from Jeffrey McManus [72103,3263].
  111.  
  112. Bevel Width - You can specify the command button's bevel 
  113. width.  The Win31 default is 2.  The Win95 setting is 1.  You 
  114. can achieve a Win95 look by setting MB3D_BevelWidth=1.  A 
  115. suggestion from Bruce Nordstrand [100352,176]
  116.  
  117. VB MsgBox Source - MsgGen3D now generates output for the 
  118. standard VB MsgBox.  Suggested by Kip Johnson [76451,3660].
  119.  
  120. Minor Enhancements
  121. 1. MsgBox3D no longer needs constants from VB's Constant.Txt 
  122. file.
  123. 2. An Undo button is added to the message edit screen.
  124. 3. The message form is no longer "outline" if registered with 
  125. Ctl3D.
  126. 4. The MsgBox3D subroutines and functions have been 
  127. documented and distributed in help file MsgBSubs.Hlp.
  128.  
  129. Version 2.80, 95/04/02
  130. ----------------------
  131. MsgGen3D Settings - MsgGen3D options and settings are now 
  132. saved in and Ini file.  The are restored the next time the 
  133. program is executed.
  134.  
  135. MsgNew3D What's New - In prior versions of MsgGen3D, the 
  136. "What's New" messages were always displayed during the 
  137. startup process.  The display of "What's New" messages can 
  138. now be disabled.
  139.  
  140. Version 2.72, 95/03/12
  141. ----------------------
  142. German Captions.  Thanks to Holger Thornagel [100407,356] for 
  143. supplying German equivalent captions used in MsgCap3D.Frm.
  144.  
  145. Version 2.71, 95/03/12
  146. ----------------------
  147. Ctl3D.DLL Old Version - MsgBox3D uses Ctl3D's function 
  148. Ctl3dSubclassDlgExV2 to register the message.  Older versions 
  149. do not provide that function.  MsgBox3D now gets the 
  150. Ctl3D.DLL version [using Ctl3DGetVer] and does not call the 
  151. subclassing function unless the Ctl3D version is 2.0 or 
  152. greater.  Thanks to Dallas Bridge, 100237,3155 for bringing 
  153. the limitation to our attention.
  154.  
  155. Version 2.70, 95/03/06
  156. ----------------------
  157. MB3D_NoTitles.  MsgBox3D can display the message without a 
  158. title.  Support is provided to drag the "no title" message.
  159.  
  160. MB3D_UseCtl3D.  MsgBox3D will use Ctl3D.DLL or the newer 
  161. version, Ctl3DV2.DLL, to display the title with a 3D effect.
  162.  
  163. Message Edit.  Message input is provided via a separate form.  
  164. An Edit button is added to MsgGen3D which pop's up a large 
  165. form into which message test can be entered.
  166.  
  167. Version 2.61, 95/01/31
  168. ----------------------
  169. Single Access Key.  The standard VB message box allows the 
  170. user to press a single access key to respond to a message.  
  171. The user does need to press Alt-Access Key.  For example: 
  172. Pressing "Y" causes the "Yes" action to be selected.  The 
  173. user does not have to press Alt-Y.  The character following 
  174. the ampersand found in the command's caption becomes the 
  175. single character access key.  If more than one command 
  176. contains that character the key is ignored.  This feature is 
  177. added to MsgBox3D in version 2.61 from a suggestion by Nic 
  178. Barnes, 100111,3452.
  179.  
  180. Version 2.60, 95/01/30
  181. ----------------------
  182. MB3D_VGA_Messages.  By design, the width of the message 
  183. created by MsgBox3D considers the screen's resolution.  A 
  184. "wider" message is created on higher resolution screens.  You 
  185. can "force" message to be displayed in VGA resolution width.  
  186. If MB3D_VGA_Messages=True then MsgBox3D will create these 
  187. narrower messages.
  188.  
  189. Version 2.50, 94/12/03
  190. ----------------------
  191. MB3D_Unload.  The MsgBox3D form can now be unloaded, if 
  192. loaded, using MB3D_Unload.
  193.  
  194. MB3D_Zone.  The MsgBox3D message can be centered in a zone.  
  195. Subroutine MB3D_Zone is added.  See Message Location in the 
  196. MsgBox3D.Hlp file.
  197.  
  198. Registration.  MsgBox3D registration is available from 
  199. CompuServe Shareware Registration services.  Use GO SWREG, 
  200. item number 3805.
  201.  
  202. Mouse Snap-To.  The mouse pointer will jump to the default 
  203. button of any dialog box if Snap-To is enabled in the mouse 
  204. driver.  MsgBox3D uses ThreeD.VBX command buttons.  
  205. ThreeD.VBX buttons do not support the Snap-To feature.  
  206.  
  207. One standard VB command button was added to the MsgBox3D form 
  208. in version 2.44.  That button is moved to the center of the 
  209. default message button then set to invisible.  
  210.  
  211. This workaround solves the minor inconsistency between VB's 
  212. MsgBox and MsgBox3D. Thanks go to Helmuth Schutzeich for 
  213. reporting this inconsistency.
  214.  
  215. French Captions.  Thanks to Roger Doyon [74361,3542] for 
  216. supplying French equivalent captions used in MsgCap3D.Frm.
  217.  
  218. Bug.  MsgGen3D always tried to use Ctl3Dv2.  Then goes into a 
  219. loop and can't recover.  Thanks to Helmuth Schutzeich for 
  220. reporting this "serious bug."
  221.  
  222. Version 2.40, 94/10/06
  223. ----------------------
  224. Significantly Improved Performance.  The MsgBox3D form is no 
  225. longer unloaded.  It is hidden instead.  This provides a vast 
  226. improvement in performance.  Almost all code was moved from 
  227. the message form [MsgBox3D.Frm] to the module [MsgBox3D.Bas].  
  228. You can still unload the form by changing one global 
  229. variable.  A suggestion from Art Gravina and Nick Esselman.
  230.  
  231. Help Button or No Buttons.  You can include a Help button or 
  232. have no buttons displayed with the message.  Help button is a 
  233. suggestion from Ed Obeda.  No buttons is a suggestion from 
  234. Nick Esselman.
  235.  
  236. More Icons.  Eight more standard Icons are added.  A 
  237. suggestion from a number of users.
  238.  
  239. Cleaner Message.  The message has been redesigned providing a 
  240. cleaner 3D effect.  Use the new or old design by changing one 
  241. global switch.  A suggestion from Douglas D. Feller
  242.  
  243. New Name.  MsgDmo3D's name is changed to MsgGen3D.  The new 
  244. name reflects the message generation features of the program.
  245.  
  246. Version 2.30, 94/09/08
  247. ----------------------
  248. Generate VB Code.  MsgDmo3D.Exe, the demo program, will 
  249. generate MsgBox3D source code which can be "pasted" into your 
  250. application.  See help topic "Generating MsgBox3D Source 
  251. Code" in the help file for details.
  252.  
  253. Version 2.20, 94/08/17
  254. ----------------------
  255. Add Alternate Icons.  You can select from one of sixteen 
  256. alternate icons, or specify the file name of any icon to be 
  257. displayed by MsgBox3D.  A suggestion from Ed Obeda.
  258.  
  259. Save and Restore MsgBox3D Global Variables.  You can use 
  260. subroutines MB3D_Globals_Save and MB3D_Globals_Restore to 
  261. save and restore the 21 MsgBox3D user definable variables.
  262.  
  263. Version 2.10, 94/07/27
  264. ----------------------
  265. Add "Splash Screen" support.  Use Global MB3D_Splash to pass 
  266. an interval to MsgBox3D.  For example:
  267.       MB3D_Splash = 1000
  268. causes the message to be removed in one second.
  269.  
  270. Version 2.03, 94/06/02
  271. ----------------------
  272. Add "Private" to internal MsgBox3D subroutines and functions.
  273.  
  274. Version 2.02, 94/05/30
  275. ----------------------
  276. A comment in the help file was inaccurate.  A label box, not 
  277. a text box, is used to display non-3D messages.
  278.  
  279. Version 2.01, 94/05/29
  280. ----------------------
  281. Added MB3D_Commands_No3D global variable.  When set to True 
  282. commands are shown without a 3D font.  Suggestion from Louis 
  283. Desjardins.
  284.  
  285. Version 2.00, 94/05/27
  286. ----------------------
  287. Two significant features were added to MsgBox3D in version 
  288. 2.00.  You can now specify the font and alignment used while 
  289. displaying the message.  And you can define the command 
  290. captions and fonts.  For example: The "OK" caption could be 
  291. replaced with "Next Page".  These enhancements are described 
  292. in the demo's What's New screens.  
  293.  
  294. Uses: You could use MsgBox3D as a bilingual enhancement to 
  295. VB's message box.  For example: As the user log's on he 
  296. replies whether he wishes to use the French or English 
  297. version of your application.  You then modify the command 
  298. captions based upon his language preference.
  299.  
  300. Version 1.10, 94/04/10
  301. ----------------------
  302. 1.  Remove VSVBX from the demo program.  
  303.  
  304. 2.  Support the up and down arrow keys while displaying the 
  305. message.  Pressing the up or down arrow keys did not provide 
  306. the same results as the VB MsgBox.
  307.  
  308. Version 1.01, 94/03/04
  309. ----------------------
  310. 1.  Add support for System Modal mode.  With the help of 
  311. Wayne Aiello, MsgBox3D now supports the display of the 
  312. message box in System Modal mode.  The SetSystemModalWindow 
  313. API is used.
  314.  
  315. 2.  MsgBox3D is modified to eliminate the Switch menu entry 
  316. from the control box.  And display the Close menu entry only 
  317. if a Cancel button is displayed.  The GetSystemMenu, 
  318. DeleteMenu and ModifyMenu API's are used.
  319.  
  320. Version 1.00, 94/03/01
  321. ----------------------
  322. Original version completed.  A demo is uploaded to CompuServe 
  323. on 94/03/01.
  324.  
  325. ==============
  326. Upgrade Policy
  327. ==============
  328. See the Upgrade Policy in help file MsgBox95.Hlp.
  329.  
  330. =================
  331. Ordering MsgBox3D
  332. =================
  333. See Registering and Ordering in help file MsgBox95.Hlp
  334.  
  335. If you have questions, problems, or suggestions concerning 
  336. MsgBox95, please contact:
  337.  
  338. The Bridge, Inc.
  339. 913 Hacienda Way
  340. Millbrae, CA  94030
  341. 415-737-0870
  342. Fax: 415-737-0871
  343. CompuServe: 71662,205
  344.  
  345. ==============
  346. Other Products
  347. ==============
  348. Other products available from The Bridge on CompuServe 
  349. include:
  350.  
  351. Holiday Calendar - A full function calendar with holidays 
  352. using DDE.  Use it as a stand alone calendar.  Or use it to 
  353. communicate with your application via DDE.  Holiday 
  354. information is stored in an Access database.  Source code 
  355. available for $19.95.  File name: HolCal.Zip
  356.  
  357. Shade - A demo program that shows how to shade a form - 
  358. similar to the Window's Setup screen.  Freeware.  File name: 
  359. Shade.Zip.
  360.  
  361. SetTab - A demo program that shows how to set tabs in a text 
  362. box.  Freeware.  File name: SetTab.Zip
  363.  
  364. TstLay - Two functions that will save and restore a TrueGrid 
  365. layout in a binary file.  Freeware.  File name: TstLay.Zip.
  366.  
  367. DemoCt3D - Demonstrates the API's needed to call Ctl3D.DLL.  
  368. Freeware.  File name: DmoC3D.Zip
  369.  
  370. UppLow - A demo that uses API's to force the text box to 
  371. convert all data to upper or lower case as it is entered. 
  372. Freeware.  File name: UppLow.Zip
  373.  
  374. Readme.Txt Last Revised: Sunday, July 23, 1995
  375.  
  376.